home *** CD-ROM | disk | FTP | other *** search
- package koala.dynamicjava.interpreter.modifier;
-
- import koala.dynamicjava.interpreter.context.Context;
- import koala.dynamicjava.interpreter.error.ExecutionError;
- import koala.dynamicjava.tree.Node;
- import koala.dynamicjava.tree.visitor.Visitor;
-
- public class InvalidModifier extends LeftHandSideModifier {
- private Node node;
-
- public Object prepare(Visitor var1, Context var2) {
- throw new ExecutionError("cannot.modify", this.node);
- }
-
- public void modify(Context var1, Object var2) {
- }
-
- public InvalidModifier(Node var1) {
- this.node = var1;
- }
- }
-